home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / nihcl-30.lha / nihcl-3.0 / ex / StopLightQ.c < prev    next >
C/C++ Source or Header  |  1990-05-15  |  604b  |  21 lines

  1. // StopLightQ.c -- Stop Light Vehicle Queue LinkedList
  2.  
  3. #include "StopLightQ.h"
  4. #include "LandVhcl.h"
  5. #include "nihclIO.h"
  6.  
  7. #define THIS    StopLightQ
  8. #define BASE    VehicleQ
  9. #define BASE_CLASSES BASE::desc()
  10. #define MEMBER_CLASSES
  11. #define VIRTUAL_BASE_CLASSES
  12.  
  13. DEFINE_CLASS(StopLightQ,1,"$Header: /afs/alw.nih.gov/unix/sun4_40c/usr/local/src/nihcl-3.0/share/ex/RCS/StopLightQ.c,v 3.0 90/05/15 22:44:07 kgorlen Rel $",NULL,NULL);
  14.  
  15. void StopLightQ::addVehicle(LandVhcl& l)
  16.    { BASE::addVehicle(l); }
  17.  
  18. StopLightQ::StopLightQ(OIOin& strm) : BASE(strm) {}
  19.  
  20. StopLightQ::StopLightQ(OIOifd& fd) : BASE(fd) {}
  21.